var runtime.reflectOffs
18 uses
runtime (current package)
proc.go#L840: lockInit(&reflectOffs.lock, lockRankReflectOffs)
runtime1.go#L709: if reflectOffs.m == nil {
runtime1.go#L710: reflectOffs.m = make(map[int32]unsafe.Pointer)
runtime1.go#L711: reflectOffs.minv = make(map[unsafe.Pointer]int32)
runtime1.go#L712: reflectOffs.next = -1
runtime1.go#L714: id, found := reflectOffs.minv[ptr]
runtime1.go#L716: id = reflectOffs.next
runtime1.go#L717: reflectOffs.next-- // use negative offsets as IDs to aid debugging
runtime1.go#L718: reflectOffs.m[id] = ptr
runtime1.go#L719: reflectOffs.minv[ptr] = id
type.go#L273: var reflectOffs struct {
type.go#L281: lock(&reflectOffs.lock)
type.go#L283: raceacquire(unsafe.Pointer(&reflectOffs.lock))
type.go#L289: racerelease(unsafe.Pointer(&reflectOffs.lock))
type.go#L291: unlock(&reflectOffs.lock)
type.go#L312: res, found := reflectOffs.m[int32(off)]
type.go#L344: res := reflectOffs.m[int32(off)]
type.go#L386: res := reflectOffs.m[int32(off)]
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |